Skip to main content
GET
/
review-forms
/
{id}
cURL
curl --request GET \
  --url https://app.masivo.ai/api/storefront/v1/review-forms/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "Post trip rating",
    "description": "Post-trip satisfaction survey",
    "type": "RATING",
    "status": "ACTIVE",
    "fields": [
      {
        "name": "score",
        "label": "Rating",
        "type": "SCORE",
        "required": true,
        "min": 1,
        "max": 5,
        "options": [],
        "images": [
          {
            "url": "https://cdn.example.com/rating.jpg",
            "alt": "Rating reference"
          }
        ]
      }
    ],
    "settings": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.masivo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

The form unique identifier

Response

Ok

data
object